home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 May: Tool Chest / Developer CD Series Tool Chest (Apple Computer)(May 1999).iso / Tool Chest / Development Kits / MPW etc / MPW-GM / MPW / Examples / CFMExamples / CSharedLibrarySample / SharedLib.h < prev    next >
Encoding:
Text File  |  1998-12-03  |  344 b   |  23 lines  |  [TEXT/MPS ]

  1. //
  2. //    SharedLib.h - header for simple shared library
  3. //
  4. //
  5. //    Copyright © 1994, Apple Computer, Inc.  All rights reserved.
  6. //
  7.  
  8. #include <Windows.h>
  9. #include <Quickdraw.h>
  10. #include <Fonts.h>
  11. #include <string.h>
  12.  
  13. #ifdef __CFM68K__
  14. #pragma lib_export on
  15. #endif
  16.  
  17. extern void DoMessage (WindowPtr);
  18.  
  19. #ifdef __CFM68K__
  20. #pragma lib_export off
  21. #endif
  22.  
  23.